home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Programare / bluej / bluejsetup-200.exe / {app} / lib / dutch / templates / newclass / unittest.tmpl < prev   
Encoding:
Text File  |  2004-09-15  |  599 b   |  36 lines

  1. $PKGLINE
  2.  
  3. /**
  4.  * test class $CLASSNAME - geef hier een beschrijving van deze class
  5.  *
  6.  * @author (jouw naam)
  7.  * @version (versie nummer of datum)
  8.  */
  9. public class $CLASSNAME extends junit.framework.TestCase
  10. {
  11.     /**
  12.      * Constructor voor test class $CLASSNAME
  13.      */
  14.     public $CLASSNAME()
  15.     {
  16.     }
  17.  
  18.     /**
  19.      * Opzetten van de test fixture.
  20.      *
  21.      * Aanroep voor elke test case method.
  22.      */
  23.     protected void setUp()
  24.     {
  25.     }
  26.  
  27.     /**
  28.      * Verwijderen van de test fixture.
  29.      *
  30.      * Aanroep na elke test case method.
  31.      */
  32.     protected void tearDown()
  33.     {
  34.     }
  35. }
  36.